home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / util / moni / Scout-src.lha / netinclude / bsdsocket.h next >
C/C++ Source or Header  |  2002-09-16  |  811b  |  36 lines

  1. #ifndef BSDSOCKET_H
  2. #define BSDSOCKET_H \
  3.        "$Id: bsdsocket.h,v 1.1.1.1 2001/11/26 22:21:12 tboeckel Exp $"
  4. /*
  5.  *      Compiler dependent prototypes and inlines for bsdsocket.library
  6.  *
  7.  *      Copyright © 1996 AmiTCP/IP Group, Network Solutions Development, Inc.
  8.  *                       All rights reserved.
  9.  */
  10.  
  11. #ifndef UNISTD_H
  12. #include <unistd.h>        /* These should be compiler independent */
  13. #endif
  14.  
  15. #ifndef CLIB_NETLIB_PROTOS_H
  16. #include <clib/netlib_protos.h>
  17. #endif
  18.  
  19. #ifndef CLIB_SOCKET_PROTOS_H
  20. #if defined(__SASC) || defined(__GNUC__)
  21. #include <proto/socket.h>
  22. #else
  23. #include <clib/socket_protos.h>
  24. #endif
  25. #endif
  26.  
  27. #ifndef CLIB_USERGROUP_PROTOS_H
  28. #if defined(__SASC) || defined(__GNUC__)
  29. #include <proto/usergroup.h>
  30. #else
  31. #include <clib/usergroup_protos.h>
  32. #endif
  33. #endif
  34.  
  35. #endif /* !BSDSOCKET_H */
  36.